.estatico {
    border: 3px solid #73AD21;
  padding: 10px;
  background-color: #f0fff0;
  font-family: Arial, sans-serif;
}


.relativo1 {
    position: relative;
    left: 30px;
    border: 3px solid #73AD21;
    padding: 10px;
    background-color: #f0fff0;
    font-family: Arial, sans-serif;
  }
  

  .fijo {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    border: 3px solid #73AD21;
    background-color: #f0fff0;
    padding: 10px;
    font-family: Arial, sans-serif;
  }
  
  .relativo {
    position: relative;
    width: 400px;
    height: 200px;
    border: 3px solid #73AD21;
    background-color: #f9fff9;
    padding: 10px;
    font-family: Arial, sans-serif;
  }
  
  .absoluto {
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
    height: 100px;
    border: 3px solid #73AD21;
    background-color: #eaffea;
    padding: 10px;
  }
  

  .pegajoso {
    position: sticky;
    top: 0;
    padding: 10px;
    background-color: #cae8ca;
    border: 2px solid #4CAF50;
    font-weight: bold;
    font-family: Arial, sans-serif;
  }
  
  .contenido-largo {
    padding-bottom: 2000px;
    font-family: Arial, sans-serif;
  }
  

  body {
    font-family: Arial, sans-serif;
    margin: 20px;
  }
  
  .contenedor {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
  }
  
  img {
    width: 100%;
    height: auto;
    opacity: 0.3;
    display: block;
  }
  
  /* Estilos comunes para todos los textos */
  .contenedor div {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: black;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 5px;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 20px;
    
  }
  
  .botones {
    margin-bottom: 20px;
  }
  
  .botones button {
    margin: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    transition: background-color 0.3s;
  }
  
  .botones button:hover {
    background-color: #45a049;
  }
  
  .contenedor {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
  }
  
  img {
    width: 100%;
    height: auto;
    opacity: 0.3;
    display: block;
  }
  
  .texto {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: black;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border-radius: 5px;
    display: none;
  }
  
  .arriba-izquierda {
    top: 8px;
    left: 16px;
  }
  
  .arriba-derecha {
    top: 8px;
    right: 16px;
  }
  
  .abajo-izquierda {
    bottom: 8px;
    left: 16px;
  }
  
  .abajo-derecha {
    bottom: 8px;
    right: 16px;
  }
  
  .centrado {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  